Socket
Socket
Sign inDemoInstall

path-exists

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

path-exists

Check if a path exists


Version published
Weekly downloads
66M
decreased by-20.63%
Maintainers
1
Weekly downloads
 
Created

What is path-exists?

The path-exists npm package is used to check if a file or directory exists on the file system without using fs.existsSync. It is built on top of Node.js's fs.promises API and provides a simple promise-based interface.

What are path-exists's main functionalities?

Check if a path exists

This feature allows you to check if a file or directory exists asynchronously by returning a promise that resolves to either true or false.

const pathExists = require('path-exists');

(async () => {
  const exists = await pathExists('/path/to/file');
  console.log(exists);
  //=> true or false
})();

Check if a path exists synchronously

This feature provides a synchronous way to check if a file or directory exists, returning a boolean value immediately.

const pathExists = require('path-exists');

const exists = pathExists.sync('/path/to/file');
console.log(exists);
//=> true or false

Other packages similar to path-exists

Keywords

FAQs

Package last updated on 04 Apr 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc